.footer-holder{
    background-color: white;
    color: #7450af;
    width: 100%;
    padding: 50px;
    
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

}

.footer-top{
    display: flex;
    justify-content: space-around;
    align-items: start;
    width: 100%;
    gap: 50px;
}

.footer-links{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    font-size: 20px;
}

.footer-links a{
    text-decoration: none;
    color: #7450af;
    transition: all 0.3s ease-in-out;
}
.footer-links a:hover{
    color: #e73c38;
}

.footer-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    font-size: 15px;
    margin-top: 60px;
}


.social-media{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.social-icons{
    display: flex;
    gap: 15px;
}

.social-icons a{
    text-decoration: none;
    background-color: #7450af;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover{
    scale: 1.1;
}

@media (max-width: 768px){
    .footer-holder{
        padding: 20px;
    }
    .footer-top{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-links{
        width: 100%;
        gap: 10px;
    }
    .footer-bottom{
        font-size: 12px;
    }

}